/* ============================================================
   Local fonts for the FTC Design System.

   These @font-face rules replace the temporary Google Fonts import.
   The .woff2 files are not committed by this patch; copy them to:
     styles/componentes/design-system/dist/fonts/

   Expected files:
     - inter-normal.woff2  (Inter variable normal, weights 100-900)
     - inter-italic.woff2  (Inter variable italic, weights 100-900)
     - signika.woff2       (Signika variable normal, weights 300-700)
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-normal.woff2") format("woff2-variations"),
       url("../fonts/inter-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-italic.woff2") format("woff2-variations"),
       url("../fonts/inter-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Signika";
  src: url("../fonts/signika.woff2") format("woff2-variations"),
       url("../fonts/signika.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
