/* Single source for the site's font stacks (--font-sans, --font-display) and
   boldness scale (--fw-*). app.css @imports this; every other stylesheet/page
   gets the tokens either transitively (via app.css) or by linking this file
   directly. Do not redeclare these values anywhere else — change them here only. */
:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  /* Boldness scale — every font-weight in the app is one of these five. */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
}
