/* Self-hosted faces (latin). Replaces the render-blocking fonts.googleapis.com
   stylesheet: that cost ~1.7s of LCP render delay and, when gstatic was slow,
   the display-font swap resized the hero and registered as CLS 0.226.
   The *Fallback families below are Arial Narrow / Arial with overrides derived
   from the real font metrics, so the pre-swap frame occupies identical space. */
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/barlow-condensed-600.woff2) format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/barlow-condensed-700.woff2) format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-var.woff2) format("woff2");
}
@font-face {
  font-family: "Barlow Condensed Fallback";
  font-weight: 700;
  src: local("Arial Narrow");
  size-adjust: 84.19%;
  ascent-override: 118.78%;
  descent-override: 23.76%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Barlow Condensed Fallback";
  font-weight: 600;
  src: local("Arial Narrow");
  size-adjust: 82.42%;
  ascent-override: 121.34%;
  descent-override: 24.27%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial"), local("Helvetica Neue");
  size-adjust: 109.38%;
  ascent-override: 88.57%;
  descent-override: 22.05%;
  line-gap-override: 0%;
}
