﻿/* === IMPORTAÇÃO DE FONTES === */
@font-face {
    font-family: 'Sagona Bold';
    src: url('../../font/Sagona-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sagona Book';
    src: url('../../font/Sagona-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* === SOBRESCRITA DA TIPOGRAFIA GLOBAL === */
body {
    font-family: var(--cs-font-secondary) !important;
}

/* === SOBRESCRITA DE TÍTULOS EXISTENTES === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--cs-font-primary) !important;
    color: var(--cs-marrom-escuro) !important;
}

.block-title {
    font-family: var(--cs-font-primary) !important;
    color: var(--cs-marrom-escuro) !important;
}

    .block-title span {
        color: var(--cs-verde-limao) !important;
    }

/* === SOBRESCRITA DE ELEMENTOS DE TEXTO === */
p, span, li, td, th {
    font-family: var(--cs-font-secondary);
}

a {
    color: var(--cs-marrom-escuro) !important;
}

    a:hover {
        color: var(--cs-marrom-medio) !important;
    }