/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, .h1 {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-text);
}

h2, .h2 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-primary);
}

h3, .h3 {
    font-family: var(--font-secondary);
    margin: 0;
    font-size: 1.5rem;
    font-weight: normal;
}

h4, .h4 {
    font-size: var(--font-lg);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-snug);
    color: var(--color-text-primary);
}

h5, .h5 {
    font-size: var(--font-md);
    font-weight: var(--weight-medium);
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
}

p, .body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    margin: 0;
    text-align: start;
}

span {
    font-family: var(--font-primary);
    color: var(--color-white);
}

.body-large {
    font-size: var(--font-md);
    font-weight: var(--weight-regular);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
}

.body-small {
    font-size: var(--font-sm);
    font-weight: var(--weight-regular);
    line-height: var(--leading-normal);
    color: var(--color-text-muted);
}

.caption {
    font-size: var(--font-xs);
    font-weight: var(--weight-regular);
    line-height: var(--leading-normal);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

/* Text Highlights */
.highlight {
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-style: italic;
}

.highlight-accent {
    font-family: var(--font-secondary);
    color: var(--color-accent);
    font-style: italic;
}

.highlight-dark {
    color: #8B8B89;
}
