TFT_ILI9341, change fonts

Hello,
Iam using a 2.8" SPI TFT with an Uno. Sketch runs ok.
My problem is I cannot change fonts. Although there is a

tft.setTextFont(???); //what goes for ???

I cannot find out how to "pass" another font (looking for bigger than 10mm height, ie > ~50 pixels height)
whatever pass (filename...) I get compilation error

' Here Is What I Pass ' was not declared in this scope

#include "SPI.h"
#include "Adafruit_GFX.h"
#include "TFT_ILI9341.h"
...
TFT_ILI9341 tft = TFT_ILI9341();

void setup() {
  ...

  tft.begin();
  tft.fillScreen(ILI9341_BLACK);
  tft.setRotation(1);
  
  tft.setTextFont(???);
 

  tft.setTextSize(4);
  tft.setTextColor(ILI9341_WHITE);
  
}

ok, no answer so far (so far - so good' exception).

At least, can anybody suggest another library for 2.8 TFT ILI9341 that is capable of really BIG FONTS (HEIGHT 60-80 PIXELS)?

Wow.

A quick google search for "Adafruit_GFX font"
The first result was Adafruit using fonts.

All info is right there