/* =========================================================
 * Soléa — Déclarations @font-face self-hosted (RGPD-conforme).
 *
 * Audit RGPD : Google Fonts hotlinké = transfert IP UE→US (Schrems II, CJUE 2020).
 * Solution adoptée : self-host les .woff2 dans /assets/fonts/.
 *
 * À FAIRE (1 fois) : télécharger depuis https://fonts.google.com/ les 5 fichiers
 *   - Montserrat 400, 600, 700 (Latin subset)
 *   - Cormorant Garamond italic 400, italic 500 (Latin subset)
 * Outils recommandés : https://gwfh.mranftl.com/fonts (Google Webfonts Helper)
 *   → coche "Modern Browsers" (.woff2 only) + subset latin + latin-ext
 *   → décompresse et copie les fichiers dans D:\solea-theme\solea-theme\assets\fonts\
 *
 * Si les .woff2 ne sont pas présents, le navigateur applique le fallback :
 * Georgia (serif) ou system-ui (sans-serif). Le site reste fonctionnel et légal.
 *
 * font-display: swap → texte visible immédiatement, pas de FOIT (flash of invisible text).
 * ========================================================= */

/* ===== Montserrat ===== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'),
       url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Montserrat SemiBold'),
       url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Montserrat Bold'),
       url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* ===== Cormorant Garamond italic ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Cormorant Garamond Italic'),
       url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local('Cormorant Garamond Medium Italic'),
       url('../fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
}
