/* ─────────────────────────────────────────────────────────────────────
   Self-hosted fonts for ZUMA.

   Replaces the Google Fonts <link> in the layout head. Serving the woff2
   from our own origin removes the fonts.googleapis.com -> fonts.gstatic.com
   request chain (PageSpeed "Network dependency tree") and the render-blocking
   stylesheet, and lets the .htaccess 1-year immutable cache apply to the font
   files. woff2 covers every browser these markets use (incl. Tecno/Itel
   Android); no legacy fallback format is needed.

   font-display:swap keeps text visible during load, so the fonts never block
   First Contentful Paint.
   ───────────────────────────────────────────────────────────────────── */

/* Plus Jakarta Sans — body + UI (400/600/700/800) */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/css/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/css/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/css/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/css/fonts/plus-jakarta-sans-latin-800-normal.woff2') format('woff2');
}

/* Fraunces — display headings (700/800) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/css/fonts/fraunces-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/css/fonts/fraunces-latin-800-normal.woff2') format('woff2');
}
