diff --git a/lib/theme.dart b/lib/theme.dart
index 9575efd..e590f54 100644
--- a/lib/theme.dart
+++ b/lib/theme.dart
@@ -1,4 +1,5 @@
 import 'package:flutter/material.dart';
+import 'package:google_fonts/google_fonts.dart';
 import 'package:shared_preferences/shared_preferences.dart';
 
 const kMaterialYouToggleStoreKey = 'app_theme_material_you';
@@ -42,6 +43,7 @@ Future<ThemeData> createAppTheme(
     appBarTheme: AppBarTheme(
       centerTitle: true,
     ),
+    textTheme: GoogleFonts.robotoTextTheme(),
     scaffoldBackgroundColor: Colors.transparent,
   );
 }