The problem requires finding the total number of pages in a book when the total count of digits used for page numbering is 2019.
We can calculate the digits used based on the number of digits per page number:
Total digits used for pages 1 through 99 is $9 + 180 = 189$.
Given total digits = 2019.
Digits remaining after numbering the first 99 pages: $2019 - 189 = 1830$.
These remaining digits are used for pages with 3 or more digits. Assuming the book doesn't have extraordinarily long page numbers, we first check 3-digit pages.
3-digit pages: Pages 100 onwards.
The total number of pages in the book is the sum of pages up to 99 and the calculated number of 3-digit pages.
Alternatively, the last page number is the first 3-digit number (100) plus the number of 3-digit pages minus 1: $100 + (610 - 1) = 100 + 609 = 709$.
Let's verify the total digits for 709 pages:
Therefore, the book has 709 pages.