# AudiOhm Assets ## Fonts The following fonts should be downloaded and placed in `assets/fonts/`: ### Outfit Fonts 1. **Outfit-Regular.ttf** - URL: https://fonts.gstatic.com/s/outfit/v1/Outfit-Regular.ttf - Save as: `assets/fonts/Outfit-Regular.ttf` 2. **Outfit-Medium.ttf** (500) - URL: https://fonts.gstatic.com/s/outfit/v1/Outfit-Medium.ttf - Save as: `assets/fonts/Outfit-Medium.ttf` 3. **Outfit-SemiBold.ttf** (600) - URL: https://fonts.gstatic.com/s/outfit/v1/Outfit-SemiBold.ttf - Save as: https://fonts.gstatic.com/s/outfit/v1/Outfit-Bold.ttf - Save as: `assets/fonts/Outfit-Bold.ttf` ### Alternative: Use Google Fonts Package Instead of downloading manually, add to `pubspec.yaml`: ```yaml dependencies: google_fonts: ^6.1.0 ``` Then in code: ```dart import 'package:google_fonts/google_fonts.dart'; Text( 'Hello', style: GoogleFonts.outfit( fontSize: 16, fontWeight: FontWeight.w600, ), ) ``` ## Images Place app icons and images in: - `assets/images/` - General images - `assets/icons/` - App icons