/* Consolidated Font Strategy - 2 Font Stack */

/* Primary Font: Inter - for body text, UI elements, and general content */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Secondary Font: Roboto Mono - for monospace elements, labels, and technical content */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap');

/* Font Variables for consistent usage */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Roboto Mono', 'Courier New', monospace;
}

/* Base font assignments */
body {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

.mono-text, .label, .badge, .technical {
    font-family: var(--font-mono);
}
