/* ============================================================
   LOCAL-FONTS.CSS — self-hosted webfonts (offline-first).
   ------------------------------------------------------------
   UMD Design System typefaces (free alternatives to the
   licensed Interstate):
     • Overpass         → primary sans (body + UI), weights 400–900
     • Barlow Condensed → "Fearlessly Forward" display: hero
                          titles + statistics ONLY, Bold/ExtraBold
                          Italic. Not for body.
   Playfair Display is retained as the site's display serif.
   ============================================================ */

/* ── Overpass (variable, 100–900) — UMD sans ── */
@font-face {
  font-family: "Overpass";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/overpass-var.ttf") format("truetype-variations");
}

/* ── Barlow Condensed — hero titles + stats only ── */
@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/barlow-condensed-700-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/barlow-condensed-800-italic.ttf") format("truetype");
}

/* ── Playfair Display — display serif ── */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/playfair-display-600.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/playfair-display-700.ttf") format("truetype");
}
