/* ===========================================================================
   Elga Lillo -- self-hosted, subset fonts (ADR-0010). Google Fonts is not
   used at runtime: these are the same three families vendored under
   static/fonts/, subset to latin + latin-ext.

   Variable vs static was decided per family by measuring subset woff2 sizes
   (see 03-design-system-and-page-shell.md for the numbers). All three came
   out smaller as a single variable file than as separate static weight
   cuts, so all three ship variable. Each @font-face below declares the axis
   weight range it actually covers -- omitting it would make the browser
   synthesise bold instead of using the real axis (ADR-0010 consequence).
   =========================================================================== */
@font-face{
  font-family:"Space Grotesk";
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url("../fonts/space-grotesk/space-grotesk-variable.2a92341bdfae.woff2") format("woff2-variations");
}

@font-face{
  font-family:"DM Sans";
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url("../fonts/dm-sans/dm-sans-variable.fddcc8e7fa3f.woff2") format("woff2-variations");
}

@font-face{
  font-family:"JetBrains Mono";
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url("../fonts/jetbrains-mono/jetbrains-mono-variable.8a8ad01f4e35.woff2") format("woff2-variations");
}
