14 lines
307 B
CSS
14 lines
307 B
CSS
/* --- FONTS --- */
|
|
@font-face {
|
|
font-family: "CozetteVector";
|
|
src:
|
|
local("CozetteVector"),
|
|
url("/fonts/CozetteVector.ttf") format("truetype");
|
|
}
|
|
|
|
body {
|
|
font-family: 'CozetteVector';
|
|
color: var(--text2); /* Default to secondary text color. */
|
|
background-color: var(--background);
|
|
}
|