feat: add Gotham font files and integrate into styles

This commit is contained in:
2026-06-26 08:52:40 -03:00
parent def3a04548
commit 3c163e672b
18 changed files with 263 additions and 3 deletions

71
src/_fonts.scss Normal file
View File

@@ -0,0 +1,71 @@
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Thin.otf") format("opentype");
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Extra Light.otf") format("opentype");
font-weight: 200;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Light.otf") format("opentype");
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Book.otf") format("opentype");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Italic.otf") format("opentype");
font-weight: 400;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Medium.otf") format("opentype");
font-weight: 500 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Bold.otf") format("opentype");
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Bold Italic.ttf") format("truetype");
font-weight: 700;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Gotham";
src: url("/fonts/Gotham/Gotham Black.otf") format("opentype");
font-weight: 900;
font-style: normal;
font-display: swap;
}

View File

@@ -8,7 +8,8 @@
.btn {
min-height: 40px;
font-weight: 600;
font-weight: 400;
font-size:15px;
}
.btn-primary,

View File

@@ -1,10 +1,10 @@
@use "./fonts";
@import "./theme";
@import "../node_modules/bootstrap/scss/bootstrap";
:root {
--bs-body-font-family: "Gotham", sans-serif;
}