/* ==========================================================================
   SELF-HOSTED FONTS
   Build plan section 10.1 - no Google Fonts request.

   SETUP (do this before launch):
   1. Download from Google Fonts (open source, OFL licensed):
      - Space Grotesk  400, 500, 600, 700
      - IBM Plex Sans  400, 500, 600
      - IBM Plex Mono  400, 500
   2. Convert to woff2 and subset to latin (e.g. with glyphhanger or fonttools):
      pyftsubset font.ttf --flavor=woff2 --unicodes="U+0000-00FF,U+2000-206F"
   3. Drop the .woff2 files in /assets/fonts/ using the filenames below.
   4. The two preloaded faces are declared in inc/enqueue.php - update that
      list if you rename anything.

   Until the files are added the stack falls back to system-ui, which is
   safe but will not match the v1 design.
   ========================================================================== */

@font-face{
  font-family:'Space Grotesk';
  src:url('../fonts/space-grotesk-400.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'Space Grotesk';
  src:url('../fonts/space-grotesk-500.woff2') format('woff2');
  font-weight:500;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'Space Grotesk';
  src:url('../fonts/space-grotesk-600.woff2') format('woff2');
  font-weight:600;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'Space Grotesk';
  src:url('../fonts/space-grotesk-700.woff2') format('woff2');
  font-weight:700;font-style:normal;font-display:swap;
}

@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibm-plex-sans-400.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibm-plex-sans-500.woff2') format('woff2');
  font-weight:500;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibm-plex-sans-600.woff2') format('woff2');
  font-weight:600;font-style:normal;font-display:swap;
}

@font-face{
  font-family:'IBM Plex Mono';
  src:url('../fonts/ibm-plex-mono-400.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'IBM Plex Mono';
  src:url('../fonts/ibm-plex-mono-500.woff2') format('woff2');
  font-weight:500;font-style:normal;font-display:swap;
}
