# Bundled fonts — attribution

Every font in `app/src/main/res/font/` is licensed under the **SIL Open Font
License 1.1**, whose full text is in [`OFL-1.1.txt`](OFL-1.1.txt) beside this
file. The OFL requires that text to travel with the fonts, which is why it is in
the package rather than linked.

All three are free to bundle in a commercial app, including one you sell. What
the OFL forbids is selling the font files *by themselves* — not selling software
that embeds them.

| Font | Files | Copyright | Source |
|---|---|---|---|
| **Fredoka** | `fredoka_variable.ttf` | Copyright 2021 The Fredoka Project Authors | https://github.com/hafontia/Fredoka · https://fonts.google.com/specimen/Fredoka |
| **Montserrat** | `montserrat_light.ttf`, `montserrat_medium.ttf`, `montserrat_regular.ttf`, `montserrat_semibold.ttf` | Copyright 2011 The Montserrat Project Authors | https://github.com/JulietaUla/Montserrat · https://fonts.google.com/specimen/Montserrat |
| **Plus Jakarta Sans** | `plus_jakarta_sans_variable.ttf` | Copyright 2020 The Plus Jakarta Sans Project Authors | https://github.com/tokotype/PlusJakartaSans · https://fonts.google.com/specimen/Plus+Jakarta+Sans |

Fredoka and Plus Jakarta Sans are variable fonts; the app drives their `wght`
axis through `FontVariation`, which is why `minSdk` is 26 (see the note in
`app/build.gradle.kts`).

## Verify before you ship

The copyright lines above are the ones published with each family, but the
authoritative copy is the `OFL.txt` inside each font's own download. Confirm
them once:

1. Download each family from Google Fonts or the GitHub repository above.
2. Open the `OFL.txt` it ships with.
3. Check the copyright line matches the table, and that the licence body matches
   `OFL-1.1.txt`.

If a copyright line differs — a family can gain authors between releases —
correct this table rather than the licence text.

## Reserved Font Names

None of these three declare a Reserved Font Name, so a modified build does not
need renaming. If you *do* modify a font file, re-read clause 3 of the licence
first.
