/* Global fonts for the project - Inter (UI) + JetBrains Mono (mono) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --font-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', monospace;
}

html, body {
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code, pre, kbd, samp, .mono {
  font-family: var(--font-mono);
}

/* Small utility to force mono for fixed-width labels */
.mono { font-variant-numeric: tabular-nums; }

/* Optional: reduce font-weight jump on headings */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-ui); font-weight: 700; }
