feat: tipografia aldatzen du

This commit is contained in:
2023-12-28 18:17:59 +01:00
parent cc945ce684
commit 3659a8811d
4 changed files with 5 additions and 4 deletions

View File

@@ -39,8 +39,8 @@ module.exports = {
fonts: {
google: [
{
family: 'Almarai',
variants: ['300', '700'],
family: 'Lato',
variants: ['400', '700'],
fontDisplay: 'swap',
},
],

View File

@@ -10,7 +10,8 @@ html {
}
body {
font-family: 'Almarai', sans-serif;
/* OHARRA: Logoan eta irudi korporatiboan Söhne familia erabili da */
font-family: 'Lato', sans-serif;
@include baseFont;
font-weight: var(--font-weight-bold);

View File

@@ -1,4 +1,4 @@
:root {
--font-weight-regular: 300;
--font-weight-regular: 400;
--font-weight-bold: 700;
}