/* fastverk brand theme for mdBook — typography.
 *
 * Overrides mdBook's default fonts.css to use Space Grotesk (the brand
 * typeface, same faces as the wordmark + brandbook). mdBook references
 * --mono-font for code; we leave that to the system monospace stack so code
 * stays legible. */

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("SpaceGrotesk-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("SpaceGrotesk-SemiBold.ttf") format("truetype");
}

:root {
  --fv-sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
}
