/* ============================================================================
   MomOps — Web fonts
   ----------------------------------------------------------------------------
     • Source Serif 4 — DISPLAY / headings. SELF-HOSTED from uploaded variable
       font files (roman + italic), weights 200..900, optical size 8..60.
       Use 400 (soft editorial), 600 (headings), 700 (strong), 900 (rare emphasis).
     • Atkinson Hyperlegible — BODY / interface. Loaded from Google Fonts (no
       local file uploaded; CDN delivery is fine). Weights 400, 700.
   ========================================================================== */

/* Atkinson Hyperlegible — CDN (not uploaded) */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&display=swap');

/* Source Serif 4 — self-hosted variable fonts */
@font-face {
  font-family: 'Source Serif 4';
  src: url('SourceSerif4-VariableFont_opsz_wght.ttf') format('truetype-variations'),
       url('SourceSerif4-VariableFont_opsz_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('SourceSerif4-Italic-VariableFont_opsz_wght.ttf') format('truetype-variations'),
       url('SourceSerif4-Italic-VariableFont_opsz_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-stretch: normal;
  font-style: italic;
  font-display: swap;
}
