/* BikeGPT – fonts.css (nur Schrift, keine Layout-Regeln) */
/* System-Sans-Stack (ähnlich Montserrat, aber nativ & schnell) */
html, body {
  font-family:
    system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
    Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Monospace für Code/Tabellen-Köpfe, wo nötig */
code, pre, kbd, samp {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
