/**
 * Typography — The Way Barbershop
 * Google Fonts + type scale
 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* ── Utility classes ── */
.text-gold   { color: var(--color-accent); }
.text-muted  { color: var(--color-text-muted); }
.text-subtle { color: var(--color-text-subtle); }
.text-white  { color: var(--color-text); }
.text-sm     { font-size: var(--text-sm); }
.text-lg     { font-size: var(--text-lg); line-height: 1.7; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
