@font-face {
    font-family: 'Airstrike';
    /* O '../' diz ao sistema para voltar atrás uma pasta antes de entrar em fonts */
    src: url('../fonts/Airstrike.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Exemplo de uso nos Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Airstrike', sans-serif;
}

/* 1. Registar a fonte */
@font-face {
    font-family: 'Airstrike';
    src: url('../fonts/Airstrike.woff2') format('woff2');
    /* Se tiver o ficheiro .woff também, adicione a linha abaixo. Se só tiver .woff2, apague a vírgula acima e feche com ; */
    font-weight: normal;
    font-style: normal;
}

/* 2. Aplicar a fonte (O !important é o segredo aqui) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Airstrike', sans-serif !important;
}

/* Se quiser também no Menu */
.sp-megamenu-parent > li > a {
    font-family: 'Airstrike', sans-serif !important;
}