/* Self-hosted fonts (#325 — RGPD/CNIL). Replaces the Google Fonts CDN links:
 * loading from fonts.googleapis.com transmitted every visitor's IP to Google
 * (US) without consent — the exact practice CNIL flags post-Schrems II.
 * Variable woff2, latin subset (covers FR incl. Œœ / EN); same families and
 * weights the pages already used, so no visual change.
 * Files fetched 2026-07-06 from fonts.gstatic.com (DM Sans v17, Playfair
 * Display v40) — see docs/adr/0098 for the #325 analysis. */

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

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

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