Calculates the average reading time in seconds based on word count and words per minute.
double calculateReadTime({int wordsPerMinute = 200}) { return countWords() / wordsPerMinute; }