/* ============================================================
   Self-hosted webfonts (BRAND_TRUST_RECONCILIATION_spec §6:
   no Google Fonts CDN — visitor IPs stay off third-party hosts,
   consistent with the "Daten in der Schweiz / DSG-konform"
   positioning). Replaces every Google-Fonts-CDN <link>.

   Files: latin-subset VARIABLE fonts (wght axis) — they cover
   every weight/style the pages previously requested from the
   CDN (Playfair 400/600/700 + italic, Source Sans 3 300-700).
   German umlauts (ä ö ü ß) are inside the latin unicode-range
   (U+0000-00FF); latin-ext is not needed for DE/EN content.

   Usage per page (absolute paths — Hard Rule 23):
     <link rel="preload" href="/shared/fonts/playfair-display-latin-var.woff2" as="font" type="font/woff2" crossorigin>
     <link rel="preload" href="/shared/fonts/source-sans-3-latin-var.woff2" as="font" type="font/woff2" crossorigin>
     <link rel="stylesheet" href="/shared/fonts.css?v=<date>">
   (font preloads REQUIRE crossorigin even same-origin, or the
   browser fetches the file twice.)
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/shared/fonts/playfair-display-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('/shared/fonts/playfair-display-italic-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('/shared/fonts/source-sans-3-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
