/*
 * NextSure local typography.
 * Uses operating-system fonts, so no Google Fonts request or font download is
 * required. The stack is intentionally easy to edit.
 */
:root {
  --ns-font-sans: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--ns-font-sans);
}
