﻿/* Load Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Manrope:wght@300..800&display=swap");

/* Font variables */
:root {
    --font-display: "Michroma", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Global body */
html, body {
    font-family: var(--font-body);
}

/* Headings & brand */
h1, h2, h3, .brand, .nav a.primary {
    font-family: var(--font-display);
    letter-spacing: .02em;
    font-weight: 700;
}

/* Optional: subtle emphasis for the X in CORXOR */
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .03em;
}

    .logo-text .x {
        display: inline-block;
        transform: scale(1.06);
        letter-spacing: 0;
    }

/* If your old styles set Inter on body, this file being LAST will override it. */
