/*
 * EYNOR — fonts self-hosted (RGPD-friendly, pas de RTT vers Google).
 * Subset Latin (U+0000-00FF) suffisant pour le français.
 *
 * Stack typo simplifiée (audit design 2026-05-20) : 2 polices max, à la Apple/Stripe.
 *  - Inter (variable Latin) : body + UI + chiffres + libellés
 *  - Syne  (variable Latin) : titres / display / accents éditoriaux
 *
 * Retirées (bruit visuel, doublons) :
 *  - Archivo + Archivo Black → remplacées par Syne (display)
 *  - JetBrains Mono → fallback système ui-monospace (suffisant pour références chips)
 *  - Plus Jakarta Sans + DM Sans → remplacées par Inter (body)
 *  - Fraunces (jamais utilisée hors /dev/*)
 *
 * Cormorant Garamond + Playfair Display retirés (non utilisés sur site public).
 */

/* Inter v4.001 — variable Latin (axe wght 100-900, ~48KB). Copie EXACTE du fichier que servait Google Fonts (gstatic v20) à la prod avant la migration self-host RGPD. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter/inter-variable-latin.woff2?v=4.2gf') format('woff2-variations'),
       url('/fonts/inter/inter-variable-latin.woff2?v=4.2gf') 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;
}

/* Syne — variable Latin (400-800), display unique pour titres / accents éditoriaux. */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/syne/syne-variable-latin.woff2') format('woff2-variations'),
       url('/fonts/syne/syne-variable-latin.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;
}
