/* Typography System */

* {
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.6;
    color: var(--color-primary);
    font-weight: var(--font-weight-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-h3);
    color: var(--color-secondary);
    font-weight: var(--font-weight-normal);
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

a:hover {
    opacity: 0.6;
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.text-secondary {
    color: var(--color-secondary);
}

.text-small {
    font-size: var(--font-size-small);
}
