add fonts to css

This commit is contained in:
2024-01-02 11:06:28 -06:00
parent f200394b62
commit 62806cf395

View File

@@ -53,13 +53,32 @@
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Chevalier";
src: url("fonts/Chevalier-Becker-Stripes.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Americana";
src: url("fonts/Americana-Font-Regular.otf") format("opentype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Belluccia";
src: url("fonts/Belluccia.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
:root {
--c-bg: #fdfdfd;
--c-cta: #ebf2f9;
--c-text: #203650;
--f-sans: "DM Sans", sans-serif;
--f-serif: "Lora", serif;
--f-family: var(--f-sans);
--f-sans: "Americana", sans-serif;
--f-serif: "Chevalier", serif;
--f-script: "Belluccia", cursive;
--f-family: var(--f-serif);
--f-size: 18px;
--f-height: 32px;
--f-weight: 400;