28 lines
636 B
CSS
28 lines
636 B
CSS
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('../../fonts/Inter-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('../../fonts/Inter-Medium.ttf') format('truetype');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('../../fonts/Inter-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('../../fonts/Inter-ExtraBold.ttf') format('truetype');
|
|
font-weight: 800;
|
|
font-style: normal;
|
|
}
|
|
body, html {
|
|
font-family: 'Inter', Arial, sans-serif;
|
|
}
|