/* ============================================================
   Shengchi Foundation — SELF-HOSTED FONTS
   No Google Fonts network requests (per build spec).

   TWO font systems live here:
     • SCF brand (global default) — Fraunces (display) + Manrope (body/UI)
     • Learning Success (scoped to .ls-* landing patterns) — Fredoka + Lexend

   Both must ship so the LS AdWords landing pages keep their own look
   (see .ls-pattern token overrides in tokens.css).

   font-display: swap keeps text visible during load; the system
   fallbacks in --font-display / --font-body cover any miss.
   Manrope 400 is preloaded from functions.php (first paint body copy).
   ============================================================ */

/* ============================================================
   SCF BRAND
   ============================================================ */

/* ---- Fraunces — display / headings (soft old-style serif) ---- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fraunces-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/fraunces-900.woff2') format('woff2');
}

/* ---- Manrope — body / UI / reading (semi-geometric sans) ---- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/manrope-700.woff2') format('woff2');
}

/* ============================================================
   LEARNING SUCCESS (scoped — landing pages only, via .ls-*)
   ============================================================ */

/* ---- Fredoka — display / headings ---- */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fredoka-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fredoka-semibold.woff2') format('woff2');
}

/* ---- Lexend — body / UI / reading ---- */
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lexend-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lexend-bold.woff2') format('woff2');
}
