From a77ad7b784f555cb1638cd474f5cd006a95698e8 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Sun, 16 Nov 2025 14:44:58 +0100 Subject: [PATCH] Add Google Fonts import and update font-family in CSS for improved typography across the application. --- docroot/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docroot/style.css b/docroot/style.css index 52b0a7b..9aabaf6 100644 --- a/docroot/style.css +++ b/docroot/style.css @@ -1,8 +1,11 @@ +@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+JP&family=Noto+Sans+SC&family=Noto+Sans+Thai&display=swap'); + html, body { margin: 0; padding: 0; width: 100%; height: 100%; + font-family: 'Noto Sans', 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans Thai', sans-serif; } .header { background: #ffffff;