diff --git a/changelog.js b/changelog.js
index d8f733f..b8da734 100644
--- a/changelog.js
+++ b/changelog.js
@@ -1,7 +1,15 @@
// Version tracking
-export const APP_VERSION = '1.0.25';
+export const APP_VERSION = '1.0.26';
export const CHANGELOG = {
+ '1.0.26': {
+ date: '2026-02-03',
+ changes: {
+ improvements: [
+ 'Timer display now uses monospaced font (Azeret Mono) so the time does not shift horizontally as digits change',
+ ],
+ },
+ },
'1.0.25': {
date: '2026-02-03',
changes: {
diff --git a/index.html b/index.html
index 405a3d6..400f13c 100644
--- a/index.html
+++ b/index.html
@@ -74,7 +74,7 @@
diff --git a/styles.css b/styles.css
index 40ed3a7..2f91af7 100644
--- a/styles.css
+++ b/styles.css
@@ -323,9 +323,8 @@ h1 {
.timer-display .time {
font-size: min(15vw, 11rem);
- font-family: 'DM Sans', -apple-system, BlinkMacSystemFont,
- 'Segoe UI Condensed', 'Segoe UI', Roboto, sans-serif;
- font-weight: 700;
+ font-family: 'Azeret Mono', ui-monospace, 'Cascadia Mono', monospace;
+ font-weight: 600;
color: var(--colour-gold);
font-variant-numeric: tabular-nums;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.15);