-
Notifications
You must be signed in to change notification settings - Fork 7
/
fonts.ts
34 lines (28 loc) · 793 Bytes
/
fonts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Montserrat } from 'next/font/google'
// Docs: https://nextjs.org/docs/pages/building-your-application/optimizing/fonts#with-tailwind-css
export const montserrat_heading = Montserrat({
weight: '700',
subsets: ['latin'],
variable: '--font-montserratHeading',
display: 'swap',
})
export const montserrat_paragraph = Montserrat({
weight: '500',
subsets: ['latin'],
variable: '--font-montserratParagraph',
display: 'swap',
})
// export const rubik_puddles = Rubik_Puddles({
// weight: '400',
// subsets: ['latin'],
// display: 'swap',
// variable: '--font-rubikPuddles',
// })
// export const inter = Inter({
// subsets: ['latin'],
// display: 'swap',
// })
// export const roboto_mono = Roboto_Mono({
// subsets: ['latin'],
// display: 'swap',
// })