/* === FONTS CSS === */
:root {
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Orbitron', sans-serif;
}

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

p, span, a, li, button, input {
    font-family: var(--font-mono);
    letter-spacing: 0.01em;
}