/* Self-hosted Inter + Space Grotesk (latin). Google's stylesheet was being swallowed and DROPPED by
   LiteSpeed CSS optimization (the optimized bundle had zero face rules), so logged-out visitors silently
   got system fonts. Self-hosting makes this unstrippable and removes two third-party preconnects.

   2026-09-15: collapsed from SEVEN face rules to two. The seven files on disk are only TWO unique files:
   inter-400/500/600/700 are byte-identical (md5 260c81a4759b), and space-grotesk-500/600/700 are
   byte-identical (md5 87c506d88b9f). They are VARIABLE fonts, so a single file serves every weight, which
   is why rendered widths still differ per weight. The old CSS made every browser download the same Inter
   file four times and the same Space Grotesk file three times: 259,888 bytes where 70,544 does the job,
   and that was 75% of a typical page's transferred weight. The six duplicate files are deliberately left
   on disk so any cached copy of the old stylesheet still resolves. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://calculateyourgrade.com/wp-content/uploads/gradelab/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://calculateyourgrade.com/wp-content/uploads/gradelab/fonts/space-grotesk-500.woff2') format('woff2');
}
