From c388cf59006b0d458e8496295ac8c83e3a38e604 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 15 Apr 2026 15:06:48 +0300 Subject: [PATCH 1/2] Bob AI: Update the global font for the entire website to 'Inter'. --- src/index.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.css b/src/index.css index 918b65e..c072e5b 100644 --- a/src/index.css +++ b/src/index.css @@ -135,7 +135,7 @@ body { margin: 0; background-color: var(--background); color: var(--foreground); - font-family: "Inter", sans-serif; + font-family: var(--font-sans); position: relative; min-height: 100vh; overscroll-behavior: none; @@ -148,13 +148,13 @@ h3, h4, h5, h6 { - font-family: "Inter", sans-serif; + font-family: var(--font-sans); } button, .primary-button, .secondary-button { - font-family: 'Brush Script MT', cursive; + font-family: var(--font-sans); } /* WEBILD_CARD_STYLE */ -- 2.49.1 From e661a8d532ba65ae5a99f595f2aa947fe279685a Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 15 Apr 2026 15:07:46 +0300 Subject: [PATCH 2/2] Bob AI: Change the font for all buttons to 'cursive'. --- src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index c072e5b..e152ca8 100644 --- a/src/index.css +++ b/src/index.css @@ -154,7 +154,7 @@ h6 { button, .primary-button, .secondary-button { - font-family: var(--font-sans); + font-family: cursive; } /* WEBILD_CARD_STYLE */ -- 2.49.1