/* =========================================================
   Les Petits Rappels du Cœur — polices auto-hébergées
   Remplace l'appel à Google Fonts (plus de cookie/traceur tiers).
   À charger EN PREMIER dans le <head>, avant home.css :
     <link rel="stylesheet" href="./style/fonts.css">
   Les fichiers .woff2 doivent être dans le dossier ./fonts/
   ========================================================= */

/* ---- Cormorant Garamond (police variable : 300 à 700) ---- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.woff2") format("woff2");
  font-weight: 300 700;   /* couvre light, regular, medium, semibold */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Jost (police variable : 300 à 500 utilisés) ---- */
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost.woff2") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

/* ---- Parisienne (une seule graisse) ---- */
@font-face {
  font-family: "Parisienne";
  src: url("../fonts/Parisienne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}