/* Recently — self-hosted webfonts.

   Served from our own origin rather than the Google CDN. Two reasons: the
   product promises it doesn't hand visitor data to third parties, and the
   Google CDN sees the IP of every person who loads a profile page. It also
   removes a cross-origin connection from the critical path.

   Both families are latin-subset variable builds, so one file covers every
   weight we use: ~22KB for the display face, ~48KB for the text face.

   url() paths are RELATIVE on purpose. Django's ManifestStaticFilesStorage
   rewrites url() references when it hashes filenames for production; absolute
   /static/ paths survive that rewrite unhashed and would 404 behind a
   far-future cache header. */

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-variable.25ea4a783c12.woff2") format("woff2-variations"),
       url("../fonts/space-grotesk-variable.25ea4a783c12.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Var";
  src: url("../fonts/inter-variable.65850a373e25.woff2") format("woff2-variations"),
       url("../fonts/inter-variable.65850a373e25.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
