/* Self-hosted Bitter (replaces the Google Fonts hotlink).
   NOTE: Google ships Bitter as a VARIABLE font — a single normal binary covers the whole
   weight axis, so the 400 and 700 woff2 it serves are the identical file. We therefore use
   ONE normal binary with a weight RANGE (the browser instantiates the wght axis at the
   requested weight, so 700 renders true bold). There is intentionally no separate 700 file. */
@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/bitter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Bitter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bitter-400italic.woff2") format("woff2");
}
