/* Self-hosted fonts.
   Put the files downloaded from fonts.google.com ("Download family") into /fonts:
     fonts/Manrope[wght].ttf          — variable font, weights 200–800
     fonts/Inter[opsz,wght].ttf       — variable font, weights 100–900
   Until the files are in place, the pages fall back to the Google Fonts <link> in <head>. */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope[wght].ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter[opsz,wght].ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
