/* ==========================================================================
   Apex Support Group — self-hosted web fonts (NO CDN)
   --------------------------------------------------------------------------
   Typefaces are bundled locally (latin subset, woff2) to preserve the
   project's offline / CSP-simple, no-CDN posture (see PROJECT_GUIDE.md).
     - Inter   : body / UI text  (variable font, weight axis 100–900)
     - Poppins : display / headings (static instances 600 / 700 / 800)
   font-display: swap keeps text visible immediately and avoids FOIT.
   ========================================================================== */

/* ---- Inter (variable, 100–900) — body & UI ----------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
}

/* ---- Poppins — display / headings -------------------------------------- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins-latin-800.woff2") format("woff2");
}
