@import url('https://fonts.googleapis.com/css2?family=Pantone+One&display=swap');
@font-face {
    font-family: 'Onset Regular';
    src: url('../fonts/Onset-Regular.woff2') format('woff2'),
         url('../fonts/Onset-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
@import url('https://fonts.googleapis.com/css2?family=Yeseba+One&display=swap');
/* why this tirtially doesnt work?? */


}

:root {
    --font-primary: 'Pantone One', sans-serif; /* for headings */
    --font-secondary: 'Onset Regular', sans-serif; /* for body, buttons, small text */
    --font-tertiary: "Yeseva One", cursive;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    text-decoration: none;
}

body, p, button, a, li {
    font-family: var(--font-secondary);
    text-decoration: none;
}