/* Fonts loaded via <link> in HTML — no @import (avoids render-blocking chain) */
:root {
  --font-body: "Didact Gothic", system-ui, -apple-system, sans-serif;
  --font-display: "Oswald", system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}
