18 lines
341 B
CSS
18 lines
341 B
CSS
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
@layer base {
|
||
|
@font-face {
|
||
|
font-weight: 100 900;
|
||
|
src: url("/fonts/Montserrat.ttf") format("truetype");
|
||
|
font-family: "Montserrat";
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-weight: 100 900;
|
||
|
src: url("/fonts/Fraunces.ttf") format("truetype");
|
||
|
font-family: "Fraunces";
|
||
|
}
|
||
|
}
|