'Run a python script from a batch file with specific shell font settings

I currently run a set of scripts (app.zip) from a batch file (below). The .bat file runs the program in the native cmd shell when double-clicked. However, I would like it to run with a specific font size of 16 and a font of 'Cascadia Code SemiBold'. How do I make that happen in the batch file as it is?

@echo off
python "app.zip" %*

I combed through the web and I have not found a straightforward way to tackle this need.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source