/* Font corpo del sito — --fh-font-body è impostato inline da header (public + admin). */
/* Tailwind preflight in app.css imposta html { font-family: Inter, ... } senza !important: qui forziamo la variabile. */
html {
  font-family: var(--fh-font-body, ui-sans-serif, system-ui, sans-serif) !important;
}
body.fh-body {
  font-family: var(--fh-font-body, ui-sans-serif, system-ui, sans-serif) !important;
}
body.fh-body *,
body.fh-body *::before,
body.fh-body *::after {
  font-family: inherit !important;
}
body.fh-body code,
body.fh-body kbd,
body.fh-body pre,
body.fh-body samp,
body.fh-body .font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
