/*
  NOTE:
  This project previously referenced local WOFF2 font binaries here.
  Those binaries are not present in the repository/container build, and when
  `ManifestStaticFilesStorage` is enabled Django's `collectstatic` fails on
  missing asset references in CSS.

  To keep deployments reliable (and still have decent typography), we rely on
  a system font stack.
*/

:root {
  --workshop-font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --workshop-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
 
html, body {
  font-family: var(--workshop-font-sans);
}
