@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    @import url("public/fonts/Gotham-Medium.otf");
    @import url("public/fonts/Gotham-Book.otf");
    @import url("public/fonts/Gotham-Bold.otf");
    @import url("public/fonts/Gotham-Black.otf");
    @font-face {
        font-family: "gotham";
        src: url('public/fonts/Gotham-Medium.otf') format('opentype');
        font-weight: medium;
        font-style: normal;
    }
    @font-face {
        font-family: "gotham";
        src: url('public/fonts/Gotham-Book.otf') format('opentype');
        font-weight: 400;
    }
    @font-face {
        font-family: "gotham";
        src: url('public/fonts/Gotham-Bold.otf') format('opentype');
        font-weight: bold;
        font-style: normal;
    }
    @font-face {
        font-family: "gotham";
        src: url('public/fonts/Gotham-Black.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    
}

