/* Import Archivo and Archivo Narrow fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Archivo+Narrow:wght@400;500;600;700&display=swap');

/* Typography Base Styles */
body {
    font-family: 'Archivo', sans-serif;
    color: var(--black);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

/* Button Styles based on manual */
.primary-button {
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    background: var(--copper);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background: var(--brown);
}

.secondary-button {
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    background: var(--gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
} 