/* brando brand theme for mdBook — typography.
 *
 * Overrides mdBook's default fonts.css to use 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("brand-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("brand-semibold.ttf") format("truetype");
}

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