/* ============================================================
   Google Fonts Import
   - Inter (Regular 400, SemiBold 600)
   - JetBrains Mono (Regular 400)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=JetBrains+Mono:wght@400&display=swap');

/* ============================================================
   Base / Default (Body)
   Font: Inter — Regular (400)
   ============================================================ */
body,
.font-body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ============================================================
   Heading
   Font: Inter — SemiBold (600)
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.font-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ============================================================
   Numbers
   Font: JetBrains Mono — Regular (400)
   ============================================================ */
.font-number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
}
