/* In custom_fonts.css */

@font-face {
    font-family: 'CCLetterhackSans';
    src: url('/static/fonts/CCLetterhackSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CCDropCase';
    src: url('/static/fonts/CCDropCase-Solid.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the custom fonts */
body {
    font-family: "CCLetterhackSans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'CCDropCase', sans-serif;
    
}