From e2cf4c0cbd618c99569902391c2e4d1d67423eed Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Thu, 25 Jun 2026 20:43:30 +0200 Subject: [PATCH] Update the fonts config so we get more proper weights versions --- src/fonts.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/fonts.json b/src/fonts.json index 9d70f9e..b691d3e 100644 --- a/src/fonts.json +++ b/src/fonts.json @@ -1,9 +1,19 @@ +/* see https://gwfh.mranftl.com/fonts/ for available weights */ { "googleFonts": { "families": { - "Atkinson Hyperlegible": true, - "Libre Baskerville": true, - "Ubuntu Mono": true, + "Atkinson Hyperlegible": { + "wght": [400, 700], + "ital": [400, 700] + }, + "Libre Baskerville": { + "wght": [400, 500, 600, 700], + "ital": [400, 500, 600, 700] + }, + "Ubuntu Mono": { + "wght": [400, 700], + "ital": [400, 700] + }, "Anton": true } }