/**
 * GC Theme — Typography
 *
 * Inter — body text, UI (weights: 400, 500, 600, 700)
 * Sora  — headings (weights: 400, 600, 700, 800)
 *
 * Fonts loaded from Google Fonts CDN with display: swap.
 *
 * @package GC_Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');


/* ═══════════════════════════════════════════════════════
 * Base typography
 * ═══════════════════════════════════════════════════════ */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gc-text);
    background: var(--gc-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', 'Inter', sans-serif;
    color: var(--gc-navy);
    line-height: 1.3;
    margin: 0 0 0.5em 0;
}

h1 { font-size: 2.25rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.4rem;  font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem;    font-weight: 600; }
h6 { font-size: 0.9rem;  font-weight: 600; }

a {
    color: var(--gc-primary-dark);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--gc-primary);
}

p {
    margin: 0 0 1em 0;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

code, pre {
    font-family: 'SF Mono', Monaco, Menlo, Consolas, monospace;
    font-size: 0.9em;
    background: var(--gc-bg-soft);
    padding: 2px 6px;
    border-radius: 3px;
}

pre {
    padding: 12px 16px;
    overflow-x: auto;
}

pre code {
    background: transparent;
    padding: 0;
}