/* =====================================================================
   SELF-HOSTED FONTS — Poppins (body) + Lato (headings)
   ---------------------------------------------------------------------
   Served from our own origin (assets/fonts/*.woff2) so they load fast
   with no third-party connection.

   font-display:SWAP → the real brand fonts always render as soon as they
   load (so the site never gets stuck on the plain fallback the way
   font-display:optional did). The key woff2 files are preloaded in
   header.php so they arrive almost immediately, and the size-adjust
   fallback faces below make the fallback occupy the same space, so the
   swap causes little-to-no layout shift (CLS).
   ===================================================================== */

/* ---- Poppins (body) ---- */
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/poppins-400.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/poppins-500.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/poppins-600.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/poppins-700.woff2') format('woff2');}

/* ---- Lato (headings) ---- */
@font-face{font-family:'Lato';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/lato-400.woff2') format('woff2');}
@font-face{font-family:'Lato';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/lato-700.woff2') format('woff2');}
@font-face{font-family:'Lato';font-style:normal;font-weight:900;font-display:swap;src:url('../fonts/lato-900.woff2') format('woff2');}

/* ---- Metric-matched fallbacks (minimise swap layout shift / CLS) ---- */
@font-face{
  font-family:'Poppins Fallback';src:local('Arial');
  ascent-override:105%;descent-override:35%;line-gap-override:9%;size-adjust:112%;
}
@font-face{
  font-family:'Lato Fallback';src:local('Arial');
  ascent-override:101%;descent-override:22%;line-gap-override:0%;size-adjust:97%;
}
