/*
 * Inter Font - Google Fonts
 * Per architecture.md Section 3: Component library styling
 */

/* Import Inter font from Google Fonts CDN */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Set Inter as the default font family */
:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
               'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

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