No, it is not necessary to have separate .cpp and .h files for every class, although it is a common practice as an organizational technique. It is particularly helpful if you (or the person trying to use your code) are not using a feature rich IDE e.g. a text editor. If you can't identify the contents of a file from it's name, then you are going to have a hard time locating classes in a large project. Even with an IDE such as Visual Studio, I like the convenience of having one class per file, because I can then navigate through my classes without having to use the class explorer or some other tool.
You gave the example of mixing multiple classes into one source and one header file, but another alternative you didn't mention is that you can place everything in the header file, which can be useful, for example to create header only libraries (which means the user only has to worry about including your headers), or for templates.