/*
 * BUG-292: self-hosted fonts. Google Fonts hotlinks transmitted visitor
 * IPs to Google on every page load (the LG Muenchen GDPR line of cases,
 * and an undisclosed data recipient for a privacy-first product). These
 * are the latin subsets of the variable woff2 files Google serves for
 * the exact families/weights the product uses; they live in
 * frontend/public/fonts/ and are served same-origin on every host.
 *
 * Referenced by: index.html (SPA + prerendered scorecard/methodology),
 * landing.html, privacy.html, terms.html, support.html.
 * Do NOT reintroduce Google-hosted font links; selfHostedFonts.test.js
 * fails the build if you do.
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-serif-display-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/playfair-display-latin.woff2') format('woff2');
}
