/* Font definitions */
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Using Geist as default font */
:root {
  --font-primary: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-primary);
}

/* Heading styles with Geist font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
} 