I hope this is not a dumb question, but as I have no experience/knowledge in creating fonts, I will ask nevertheless.
I quickly scanned through the repo and assumed that the font is created programmatically through a Python script. Is that correct and a common way to build a new font?
The actual "Font" data lives in the `src/v2` directory. For example, open up "Roboto_Thin.ufo/glyphs" from here, and you'll see a lot of ".glyph" files. These are essentially SVG's it appears. The python script pulls this content together and generates appropriate font files (WOFF, TTF, etc).
I quickly scanned through the repo and assumed that the font is created programmatically through a Python script. Is that correct and a common way to build a new font?