Switch font from Goalking to AGrot
- Import fonts.css in app.html - Update --font-family CSS variable to use AGrot - Adjust $bold weight from 600 to 700 to match AGrot's available weights 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7a639effaa
commit
c8c4693e08
3 changed files with 4 additions and 3 deletions
|
|
@ -3,6 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="stylesheet" href="/fonts/fonts.css" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
|
|
|
|||
|
|
@ -7,10 +7,10 @@
|
|||
font-display: swap;
|
||||
}
|
||||
|
||||
// Font-weight
|
||||
// Font-weight (AGrot: 400, 500, 700, 900)
|
||||
$normal: 400;
|
||||
$medium: 500;
|
||||
$bold: 600;
|
||||
$bold: 700;
|
||||
|
||||
// Font size (in rems based on 10px base = 62.5% of 16px)
|
||||
$font-tiny: 1.1rem; // 11px (1.1 × 10px)
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
@use 'mixins';
|
||||
|
||||
:root {
|
||||
--font-family: 'Goalking', system-ui, sans-serif;
|
||||
--font-family: 'AGrot', system-ui, sans-serif;
|
||||
|
||||
// Spacing variables
|
||||
--unit: #{spacing.$unit};
|
||||
|
|
|
|||
Loading…
Reference in a new issue