/* Define custom fonts */
@font-face {
    font-family: 'Cormorant Medium';
    src: url('../fonts/Cormorant-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'DIN Condensed Bold';
    src: url('../fonts/DIN%20Condensed%20Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/GothamBold.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/GothamBook.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Light';
    src: url('../fonts/GothamLight.otf') format('opentype');
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/Times%20New%20Roman.ttf') format('truetype');
}

/* Font classes */
.cormorant-medium {
    font-family: 'Cormorant Medium', serif;
}

.din-condensed-bold {
    font-family: 'DIN Condensed Bold', sans-serif;
}

.gotham-bold {
    font-family: 'Gotham Bold', sans-serif;
}

.gotham-book {
    font-family: 'Gotham Book', serif;
    font-style: normal;
    font-weight:900;
}

.gotham-light {
    font-family: 'Gotham Light', sans-serif;
}

.myriad-pro {
    font-family: 'Myriad Pro', serif;
}

.times-new-roman {
    font-family: 'Times New Roman', serif;
}

/* Apply fonts */
body {
    font-family: 'Times New Roman', serif; /* Default font */
}

h1, h2, h3 {
    font-family: 'Gotham Bold', sans-serif;
}

p.special-text {
    font-family: 'Cormorant Medium', serif;
}


.gotham-light {
    font-family: 'Gotham Light', sans-serif;
}

