/**
 * Neuron (1.HTML_Template) typography after ovix/main.css.
 * Ovix sets Outfit/Marcellus on :root and body { font-family: var(--font-body) }.
 * Bootstrap (pulled in via style.css) uses --bs-font-sans-serif on many controls.
 * html[data-ovix-next] beats :root (0,1,1) so variables reliably match the template.
 * Body rule beats ovix/bootstrap body (higher specificity than plain `body`).
 */
html[data-ovix-next] {
  --font-body: "Fahkwang", sans-serif;
  --font-heading: "Fahkwang", sans-serif;
  --bs-font-sans-serif: "Fahkwang", sans-serif;
}

html[data-ovix-next] body {
  font-family: "Fahkwang", sans-serif;
}
